home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / sys / RCS / times.h,v < prev    next >
Text File  |  1989-08-20  |  1KB  |  60 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     89.08.20.19.30.10;  author rab;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * times.h --
  27.  *
  28.  *    Structure returned by backwards compatible times()
  29.  *      function.  Times() has been obsoleted by getrusage(2).
  30.  *
  31.  * Copyright 1989 Regents of the University of California
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that the above copyright
  35.  * notice appear in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  *
  40.  * $Header$
  41.  */
  42.  
  43. #ifndef _SYS_TIMES_H
  44. #define _SYS_TIMES_H
  45.  
  46.  
  47. /*
  48.  * Structure returned by times()
  49.  */
  50. struct tms {
  51.     time_t    tms_utime;          /* user time */
  52.     time_t    tms_stime;          /* system time */
  53.     time_t    tms_cutime;         /* user time, children */
  54.     time_t    tms_cstime;         /* system time, children */
  55. };
  56.  
  57. #endif /* _SYS_TIMES_H */
  58.  
  59. @
  60.